home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
THINKC
/
TCL1
/
__MANDEL
/
MANDELBR
/
CPIXMAPP.H
< prev
next >
Wrap
Text File
|
1992-03-21
|
1KB
|
37 lines
/******************************************************************************
CPixMapPane.h
Interface for the PixMapPane Class
Copyright ⌐ 1989 Symantec Corporation. All rights reserved.
******************************************************************************/
#define _H_CPixMapPane
#include "CPanorama.h" /* Interface for its superclass */
#include "CPixMap.h"
class CPixMapPane : public CPanorama { /* Class Declaration */
public:
/** Instance Variables **/
CPixMap *itsPixMap;
/** Instance Methods **/
/** Contruction/Destruction **/
void IPixMapPane(CView *anEnclosure, CBureaucrat *aSupervisor,
short aWidth, short aHeight,
short aHEncl, short aVEncl,
SizingOption aHSizing, SizingOption aVSizing,
CPixMap *);
/** Accessing **/
virtual void SetPixMap(CPixMap *aPixMap);
virtual CPixMap* GetPixMap(void);
/** Drawing **/
virtual void Draw(Rect *area);
virtual PicHandle GetPicHandle(void);
};